home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Rozne / HTTrack 3.40-2 / httrack-3.40-2.exe / {app} / src / htsname.c < prev    next >
C/C++ Source or Header  |  2006-04-09  |  51KB  |  1,493 lines

  1. /* ------------------------------------------------------------ */
  2. /*
  3. HTTrack Website Copier, Offline Browser for Windows and Unix
  4. Copyright (C) Xavier Roche and other contributors
  5.  
  6. This program is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU General Public License
  8. as published by the Free Software Foundation; either version 2
  9. of the License, or any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  
  20.  
  21. Important notes:
  22.  
  23. - We hereby ask people using this source NOT to use it in purpose of grabbing
  24. emails addresses, or collecting any other private information on persons.
  25. This would disgrace our work, and spoil the many hours we spent on it.
  26.  
  27.  
  28. Please visit our Website: http://www.httrack.com
  29. */
  30.  
  31.  
  32. /* ------------------------------------------------------------ */
  33. /* File: httrack.c subroutines:                                 */
  34. /*       savename routine (compute output filename)             */
  35. /* Author: Xavier Roche                                         */
  36. /* ------------------------------------------------------------ */
  37.  
  38. /* Internal engine bytecode */
  39. #define HTS_INTERNAL_BYTECODE
  40.  
  41. #include "htsname.h"
  42.  
  43. /* specific definitions */
  44. #include "htsbase.h"
  45. #include "htstools.h"
  46. #include "htsmd5.h"
  47. #include <ctype.h>
  48. /* END specific definitions */
  49.  
  50. #undef test_flush
  51. #define test_flush if (opt->flush) { fflush(opt->log); fflush(opt->errlog); }
  52.  
  53. #define ADD_STANDARD_PATH \
  54.     {  /* ajout nom */\
  55.       char BIGSTK buff[HTS_URLMAXSIZE*2];\
  56.       buff[0]='\0';\
  57.       strncatbuff(buff,start_pos,(int) (nom_pos - start_pos));\
  58.       url_savename_addstr(save,buff);\
  59.     }
  60.  
  61. #define ADD_STANDARD_NAME(shortname) \
  62.     {  /* ajout nom */\
  63.       char BIGSTK buff[HTS_URLMAXSIZE*2];\
  64.       standard_name(buff,dot_pos,nom_pos,fil_complete,(shortname));\
  65.       url_savename_addstr(save,buff);\
  66.     }
  67.  
  68.  
  69. /* Avoid stupid DOS system folders/file such as 'nul' */
  70. /* Based on linux/fs/umsdos/mangle.c */
  71. static const char *hts_tbdev[] =
  72. {
  73.     "/prn", "/con", "/aux", "/nul",
  74.     "/lpt1", "/lpt2", "/lpt3", "/lpt4",
  75.     "/com1", "/com2", "/com3", "/com4",
  76.     "/clock$",
  77.     "/emmxxxx0", "/xmsxxxx0", "/setverxx",
  78.     ""
  79. };
  80.  
  81.  
  82. #define URLSAVENAME_WAIT_FOR_AVAILABLE_SOCKET() do { \
  83.   int prev = _hts_in_html_parsing; \
  84.   while(back_pluggable_sockets_strict(sback, opt) <= 0) { \
  85.     _hts_in_html_parsing = 6; \
  86.     /* Wait .. */ \
  87.     back_wait(sback,opt,cache,0); \
  88.     /* Transfer rate */ \
  89.     engine_stats(); \
  90.     /* Refresh various stats */ \
  91.     HTS_STAT.stat_nsocket=back_nsoc(sback); \
  92.     HTS_STAT.stat_errors=fspc(NULL,"error"); \
  93.     HTS_STAT.stat_warnings=fspc(NULL,"warning"); \
  94.     HTS_STAT.stat_infos=fspc(NULL,"info"); \
  95.     HTS_STAT.nbk=backlinks_done(sback,liens,lien_tot,ptr); \
  96.     HTS_STAT.nb=back_transfered(HTS_STAT.stat_bytes,sback); \
  97.     /* Check */ \
  98.     if (!hts_htmlcheck_loop(sback->lnk, sback->count,-1,ptr,lien_tot,(int) (time_local()-HTS_STAT.stat_timestart),&HTS_STAT)) { \
  99.       return -1; \
  100.     } \
  101.   } \
  102.   _hts_in_html_parsing = prev; \
  103. } while(0)
  104.  
  105.  
  106. // forme le nom du fichier α sauver (save) α partir de fil et adr
  107. // systΦme intelligent, qui renomme en cas de besoin (exemple: deux INDEX.HTML et index.html)
  108. int url_savename(char* adr_complete, char* fil_complete, char* save, 
  109.                                  char* former_adr, char* former_fil, 
  110.                                  char* referer_adr, char* referer_fil, 
  111.                                  httrackp* opt, 
  112.                                  lien_url** liens, int lien_tot, 
  113.                                  struct_back* sback, cache_back* cache, hash_struct* hash, 
  114.                                  int ptr, int numero_passe, const lien_back* headers) {
  115.     const char* mime_type = headers ? headers->r.contenttype : NULL;
  116.   lien_back* const back = sback->lnk;
  117.   const int back_max = sback->count;
  118.   /* */
  119.   char BIGSTK newfil[HTS_URLMAXSIZE*2];   /* ="" */
  120.   /*char BIGSTK normadr_[HTS_URLMAXSIZE*2];*/
  121.   char BIGSTK normadr_[HTS_URLMAXSIZE*2], normfil_[HTS_URLMAXSIZE*2];
  122.     enum { PROTOCOL_HTTP, PROTOCOL_HTTPS, PROTOCOL_FTP, PROTOCOL_FILE, PROTOCOL_MMS, PROTOCOL_UNKNOWN };
  123.   static const char* protocol_str[] = {"http", "https", "ftp", "file", "mms", "unknown"};
  124.   int protocol = PROTOCOL_HTTP;
  125.   char* normadr;
  126.   char* normfil;
  127.   char* fil;
  128.   char* adr;
  129.   char* print_adr;
  130.   char *start_pos=NULL,*nom_pos=NULL,*dot_pos=NULL;  // Position nom et point
  131.   // pour changement d'extension ou de nom (content-disposition)
  132.   int ext_chg=0, ext_chg_delayed=0;
  133.   int is_html=0;
  134.   char ext[256];
  135.   int max_char=0;
  136.   //CLEAR
  137.   newfil[0]=ext[0]='\0';
  138.  
  139.   /* 8-3 ? */
  140.   switch(opt->savename_83) {
  141.   case 1:     // 8-3
  142.     max_char=8;
  143.     break;
  144.   case 2:     // Level 2 File names may be up to 31 characters.
  145.     max_char=31;
  146.     break;
  147.   default:
  148.     max_char=8;
  149.     break;
  150.   }
  151.  
  152.   // effacer save
  153.   save[0]='\0';
  154.   // fil
  155.   fil = fil_complete;
  156.   // copy of fil, used for lookups (see urlhack)
  157.   normfil = fil;
  158.   // et adr (sauter user/pass)
  159.   // on prend le parti de mettre les fichiers avec login/pass au mΩme endroit que si ils
  160.   // Θtaient capturΘs sans ces paramΦtres
  161.   // c'est pour cette raison qu'on ignore totalement adr_complete (mΩme pour la recherche en table de hachage)
  162.   adr = jump_identification(adr_complete);
  163.   // copy of adr, used for lookups (see urlhack)
  164.   normadr = adr;
  165.  
  166.   // normalize the URL:
  167.   // www.foo.com -> foo.com
  168.   // www-42.foo.com -> foo.com
  169.   // foo.com/bar//foobar -> foo.com/bar/foobar
  170.   if (opt->urlhack) {
  171.     // copy of adr (without protocol), used for lookups (see urlhack)
  172.     normadr=adr_normalized(adr, normadr_);
  173.     normfil=fil_normalized(fil,normfil_);
  174.   } else {
  175.     if (link_has_authority(adr_complete)) {     // https or other protocols : in "http/" subfolder
  176.       char* pos = strchr(adr_complete, ':');
  177.       if (pos != NULL) {
  178.         normadr_[0] = '\0';
  179.         strncatbuff(normadr_, adr_complete, (int)(pos - adr_complete));
  180.         strcatbuff(normadr_, "://");
  181.         strcatbuff(normadr_, normadr);
  182.         normadr=normadr_;
  183.       }
  184.     }
  185.   }
  186.  
  187.   // α afficher sans ftp://
  188.   print_adr=jump_protocol(adr);
  189.   if (strfield(adr_complete, "https:")) {
  190.       protocol = PROTOCOL_HTTPS;
  191.   } else if (strfield(adr_complete, "ftp:")) {
  192.       protocol = PROTOCOL_FTP;
  193.   } else if (strfield(adr_complete, "file:")) {
  194.       protocol = PROTOCOL_FILE;
  195.   } else if (strfield(adr_complete, "mms:")) {
  196.       protocol = PROTOCOL_MMS;
  197.   } else {
  198.       protocol = PROTOCOL_HTTP;
  199.   }
  200.  
  201.   // court-circuit pour lien primaire
  202.   if (strnotempty(adr)==0) {
  203.     if (strcmp(fil,"primary")==0) {
  204.       strcatbuff(save,"primary.html");
  205.       return 0;
  206.     }
  207.   }
  208.  
  209.  
  210.   // vΘrifier que le nom n'a pas dΘja ΘtΘ calculΘ (si oui le renvoyer tel que)
  211.   // vΘrifier que le nom n'est pas dΘja pris...
  212.   // NOTE: si on cherche /toto/ et que /toto est trouvΘ on le prend (et rΘciproquqment) ** // **
  213.   if (liens!=NULL) { 
  214.     int i;
  215.  
  216.     i=hash_read(hash,normadr,normfil,1,opt->urlhack);      // recherche table 1 (adr+fil)
  217.     if (i>=0) {    // ok, trouvΘ
  218.       strcpybuff(save,liens[i]->sav);
  219.       return 0;
  220.     }
  221.     i=hash_read(hash,normadr,normfil,2,opt->urlhack);      // recherche table 2 (former_adr+former_fil)
  222.     if (i>=0) {    // ok, trouvΘ
  223.       // copier location moved!
  224.       strcpybuff(adr_complete,liens[i]->adr);
  225.       strcpybuff(fil_complete,liens[i]->fil);
  226.       // et save
  227.       strcpybuff(save,liens[i]->sav);  // copier (formΘ α partir du nouveau lien!)
  228.       return 0;
  229.     }
  230.  
  231.     // chercher sans / ou avec / dans former
  232.     {
  233.       char BIGSTK fil_complete_patche[HTS_URLMAXSIZE*2];
  234.       strcpybuff(fil_complete_patche,normfil);
  235.       // Version avec ou sans /
  236.       if (fil_complete_patche[strlen(fil_complete_patche)-1]=='/')
  237.         fil_complete_patche[strlen(fil_complete_patche)-1]='\0';
  238.       else
  239.         strcatbuff(fil_complete_patche,"/");
  240.       i=hash_read(hash,normadr,fil_complete_patche,2,opt->urlhack);      // recherche table 2 (former_adr+former_fil)
  241.       if (i>=0) {
  242.         // Θcraser fil et adr (pas former_fil?????)
  243.         strcpybuff(adr_complete,liens[i]->adr);
  244.         strcpybuff(fil_complete,liens[i]->fil);
  245.         // Θcrire save
  246.         strcpybuff(save,liens[i]->sav);
  247.         return 0;
  248.       }
  249.     }
  250.   }
  251.  
  252.   // vΘrifier la non prΘsence de paramΦtres dans le nom de fichier
  253.   // si il y en a, les supprimer (ex: truc.cgi?subj=aspirateur)
  254.   // nΘanmoins, gardΘ pour vΘrifier la non duplication (voir aprΦs)
  255.   {
  256.     char* a;
  257.     a=strchr(fil,'?');
  258.     if (a!=NULL) {
  259.       strncatbuff(newfil,fil,(int) (a - fil));
  260.     } else {
  261.       strcpybuff(newfil,fil);
  262.     }
  263.     fil=newfil;
  264.   }
  265.   // Decode remaining %
  266.   strcpybuff(fil,unescape_http(fil));
  267.     // , BUT do not decode high chars
  268.   //strcpybuff(fil,unescape_http_unharm(fil, 1));
  269.     // YES (not server side, but fs/client side)
  270.  
  271. #if HTS_USEMMS
  272.     /* .asx hack */
  273.     if (headers != NULL && headers->r.cdispo[0] != 0 
  274.         && strfield(headers->r.contenttype, "video/")
  275.         && strfield2(get_ext(headers->r.cdispo), "asx") == 0) 
  276.     {
  277.         ext_chg = 1;
  278.         strcpybuff(ext, "asx");
  279.     }
  280.     else if (headers != NULL && headers->r.contenttype[0] != 0 
  281.         && strfield2(headers->r.contenttype, "video/x-ms-asf"))
  282.     {
  283.         char *exts = get_ext(headers->url_fil);
  284.         if (strfield2(exts, "wmv") == 0)
  285.         {
  286.             ext_chg = 1;
  287.             strcpybuff(ext, "wmv");
  288.         }
  289.         else if (strfield2(exts, "asf") == 0)
  290.         {
  291.             ext_chg = 1;
  292.             strcpybuff(ext, "asf");
  293.         }
  294.         else if (strfield2(exts, "avi") == 0)
  295.         {
  296.             ext_chg = 1;
  297.             strcpybuff(ext, "avi");
  298.         }
  299.         else if (strfield2(exts, "asx") == 0)
  300.         {
  301.             ext_chg = 1;
  302.             strcpybuff(ext, "asx");
  303.         }
  304.     }
  305. #endif
  306.  
  307.   /* replace shtml to html.. */
  308.   if (opt->savename_delayed == 2)
  309.     is_html = -1;            /* ALWAYS delay type */
  310.   else
  311.     is_html = ishtml(fil);
  312.   switch ( is_html ) {       /* .html,.shtml,.. */
  313.   case 1:
  314.     if ( 
  315.       (strfield2(get_ext(fil),"html") == 0)
  316.       && (strfield2(get_ext(fil),"htm") == 0)
  317.       )
  318.     {
  319.       strcpybuff(ext,"html");
  320.       ext_chg=1;
  321.     }
  322.     break;
  323.   case 0:
  324.     if (!strnotempty(ext)) {
  325.       if (is_userknowntype(fil)) {      // mime known by user
  326.         char BIGSTK mime[1024];
  327.         mime[0]=ext[0]='\0';
  328.         get_userhttptype(0,mime,fil);
  329.         if (strnotempty(mime)) {
  330.           give_mimext(ext,mime);
  331.           if (strnotempty(ext)) {
  332.             ext_chg=1;
  333.           }
  334.         }
  335.       }
  336.     }
  337.     break;
  338.   }
  339.  
  340.   // si option check_type activΘe
  341.   if (is_html < 0 && opt->check_type && !ext_chg) {
  342.     int ishtest=0;
  343.     if ( (!strfield(adr_complete,"file://")) 
  344.       && (!strfield(adr_complete,"ftp://")) 
  345. #if HTS_USEMMS
  346.       && (!strfield(adr_complete,"mms://")) 
  347. #endif
  348.       ) {
  349.       // tester type avec requΦte HEAD si on ne connait pas le type du fichier
  350.       if (!(   (opt->check_type==1) && (fil[strlen(fil)-1]=='/')   ))    // slash doit Ωtre html?
  351.       if (opt->savename_delayed == 2 || (ishtest=ishtml(fil)) < 0) { // on ne sait pas si c'est un html ou un fichier..
  352.         // lire dans le cache
  353.         htsblk r = cache_read(opt,cache,adr,fil,NULL,NULL);              // test uniquement
  354.         if (r.statuscode != -1) {  // pas d'erreur de lecture cache
  355.           char s[16]; s[0]='\0';
  356.           if ( (opt->debug>1) && (opt->log!=NULL) ) {
  357.             fspc(opt->log,"debug"); fprintf(opt->log,"Testing link type (from cache) %s%s"LF,adr_complete,fil_complete);
  358.             test_flush;
  359.           }
  360.           if (strnotempty(r.cdispo)) {        /* filename given */
  361.             ext_chg=2;      /* change filename */
  362.             strcpybuff(ext,r.cdispo);
  363.           }
  364.           else if (!may_unknown(r.contenttype) || ishtest == -2) {  // on peut patcher α priori?
  365.             give_mimext(s,r.contenttype);  // obtenir extension
  366.             if (strnotempty(s)>0) {        // on a reconnu l'extension
  367.               ext_chg=1;
  368.               strcpybuff(ext,s);
  369.             }
  370.           }
  371.           //
  372.         } else if (opt->savename_delayed != 2 && is_userknowntype(fil)) {   /* PATCH BY BRIAN SCHR╓DER. 
  373.                                                                             Lookup mimetype not only by extension, 
  374.                                                                             but also by filename */
  375.           /* Note: "foo.cgi => text/html" means that foo.cgi shall have the text/html MIME file type,
  376.           that is, ".html" */
  377.           char BIGSTK mime[1024];
  378.           mime[0]=ext[0]='\0';
  379.           get_userhttptype(0, mime, fil);
  380.           if (strnotempty(mime)) {
  381.             give_mimext(ext, mime);
  382.             if (strnotempty(ext)) {
  383.               ext_chg=1;
  384.             }
  385.           }
  386.         }
  387.         // note: if savename_delayed is enabled, the naming will be temporary (and slightly invalid!)
  388.         else if (opt->savename_delayed != 0) {
  389.           if (mime_type != NULL)  {
  390.             ext[0] = '\0';
  391.             if (*mime_type) {
  392.               give_mimext(ext, mime_type);
  393.             }
  394.             if (strnotempty(ext)) {
  395.               ext_chg = 1;
  396.             }
  397.           } else {
  398.             /* Avoid collisions (no collisionning detection) */
  399.             sprintf(ext, "%x.%s", opt->state.delayedId++, DELAYED_EXT);
  400.             ext_chg = 1;
  401.                         ext_chg_delayed = 1;        /* due to naming system */
  402.           }
  403.         }
  404.         // test imposible dans le cache, faire une requΩte
  405.         else {
  406.           //
  407. #if HTS_ANALYSTE
  408.           int hihp=_hts_in_html_parsing;
  409. #endif
  410.           int has_been_moved=0;
  411.           char BIGSTK curr_adr[HTS_URLMAXSIZE*2],curr_fil[HTS_URLMAXSIZE*2];
  412.           
  413.           /* Ensure we don't use too many sockets by using a "testing" one
  414.              If we have only 1 simultaneous connection authorized, wait for pending download
  415.              Wait for an available slot 
  416.           */
  417.           URLSAVENAME_WAIT_FOR_AVAILABLE_SOCKET();
  418.  
  419.           /* Rock'in */
  420.           curr_adr[0]=curr_fil[0]='\0';
  421. #if HTS_ANALYSTE
  422.           _hts_in_html_parsing=2;  // test
  423. #endif
  424.           if ( (opt->debug>1) && (opt->log!=NULL) ) {
  425.             fspc(opt->log,"debug"); fprintf(opt->log,"Testing link type %s%s"LF,adr_complete,fil_complete);
  426.             test_flush;
  427.           }
  428.           strcpybuff(curr_adr,adr_complete);
  429.           strcpybuff(curr_fil,fil_complete);
  430.           // ajouter dans le backing le fichier en mode test
  431.           // savename: rien car en mode test
  432.           if (back_add(sback,opt,cache,curr_adr,curr_fil,BACK_ADD_TEST,referer_adr,referer_fil,1,NULL)!=-1) {
  433.             int b;
  434.             b=back_index(sback,curr_adr,curr_fil,BACK_ADD_TEST);         
  435.             if (b>=0) {
  436.               int stop_looping=0;
  437.               int petits_tours=0;
  438.               int get_test_request=0;       // en cas de bouclage sur soi mΩme avec HEAD, tester avec GET.. parfois c'est la cause des problΦmes
  439.               do {
  440.                 // temps α attendre, et remplir autant que l'on peut le cache (backing)
  441.                 if (back[b].status>0) {
  442.                   back_wait(sback,opt,cache,0);        
  443.                 }
  444.                 if (ptr>=0) {
  445.                   back_fillmax(sback,opt,cache,liens,ptr,numero_passe,lien_tot);
  446.                 }
  447.   
  448.                 // on est obligΘ d'appeler le shell pour le refresh..
  449. #if HTS_ANALYSTE
  450.                 {
  451.                   
  452.                   // Transfer rate
  453.                   engine_stats();
  454.                   
  455.                   // Refresh various stats
  456.                   HTS_STAT.stat_nsocket=back_nsoc(sback);
  457.                   HTS_STAT.stat_errors=fspc(NULL,"error");
  458.                   HTS_STAT.stat_warnings=fspc(NULL,"warning");
  459.                   HTS_STAT.stat_infos=fspc(NULL,"info");
  460.                   HTS_STAT.nbk=backlinks_done(sback,liens,lien_tot,ptr);
  461.                   HTS_STAT.nb=back_transfered(HTS_STAT.stat_bytes,sback);
  462.  
  463.                   if (!hts_htmlcheck_loop(sback->lnk, sback->count,b,ptr,lien_tot,(int) (time_local()-HTS_STAT.stat_timestart),&HTS_STAT)) {
  464.                     return -1;
  465.                   } else if (_hts_cancel || !back_checkmirror(opt)) {    // cancel 2 ou 1 (cancel parsing)
  466.                     back_delete(opt,cache,sback,b);       // cancel test
  467.                     stop_looping = 1;
  468.                   }
  469.                 }
  470. #endif
  471.                 
  472.                 
  473.                 // traitement des 304,303..
  474.                 if (back[b].status<=0) {
  475.                   if (HTTP_IS_REDIRECT(back[b].r.statuscode)) {    // agh moved.. un tit tour de plus
  476.                     if ((petits_tours<5) && (former_adr) && (former_fil)) { // on va pas tourner en rond non plus!
  477.                       if ((int) strnotempty(back[b].r.location)) {    // location existe!
  478.                         char BIGSTK mov_url[HTS_URLMAXSIZE*2],mov_adr[HTS_URLMAXSIZE*2],mov_fil[HTS_URLMAXSIZE*2];
  479.                         mov_url[0]=mov_adr[0]=mov_fil[0]='\0';
  480.                         //
  481.                         strcpybuff(mov_url,back[b].r.location);    // copier URL
  482.                         if (ident_url_relatif(mov_url,curr_adr,curr_fil,mov_adr,mov_fil)>=0) {                        
  483.                           // si non bouclage sur soi mΩme, ou si test avec GET non testΘ
  484.                           if ((strcmp(mov_adr,curr_adr)) || (strcmp(mov_fil,curr_fil)) || (get_test_request==0)) {
  485.                             // bouclage?
  486.                             if ((!strcmp(mov_adr,curr_adr)) && (!strcmp(mov_fil,curr_fil)))
  487.                               get_test_request=1;     // faire requΦte avec GET
  488.  
  489.                             // recopier former_adr/fil?
  490.                             if ((former_adr) && (former_fil)) {
  491.                               if (strnotempty(former_adr)==0) {    // Pas dΘja notΘ
  492.                                 strcpybuff(former_adr,curr_adr);
  493.                                 strcpybuff(former_fil,curr_fil);
  494.                               }
  495.                             }
  496.  
  497.                             // check explicit forbidden - don't follow 3xx in this case
  498.                             {
  499.                               int set_prio_to=0;
  500.                               robots_wizard* robots = (robots_wizard*) opt->robotsptr;
  501.                               if (hts_acceptlink(opt,ptr,lien_tot,liens,
  502.                                 mov_adr,mov_fil,
  503.                                 NULL, NULL,
  504.                                 &set_prio_to,
  505.                                 NULL) == 1) 
  506.                               {  /* forbidden */
  507.                                 has_been_moved = 1;
  508.                                 back_maydelete(opt,cache,sback,b);    // ok
  509.                                 strcpybuff(curr_adr,mov_adr);
  510.                                 strcpybuff(curr_fil,mov_fil);
  511.                                 mov_url[0]='\0';
  512.                                 stop_looping = 1;
  513.                               }
  514.                             }
  515.                             
  516.                             // ftp: stop!
  517.                             if (strfield(mov_url,"ftp://")
  518. #if HTS_USEMMS
  519.                                                             || strfield(mov_url,"mms://")
  520. #endif
  521.                                                             ) 
  522.                                                         {    // ftp, ok on arrΩte
  523.                               has_been_moved = 1;
  524.                               back_maydelete(opt,cache,sback,b);    // ok
  525.                               strcpybuff(curr_adr,mov_adr);
  526.                               strcpybuff(curr_fil,mov_fil);
  527.                               stop_looping = 1;
  528.                             } else if (*mov_url) {
  529.                               char* methode;
  530.                               if (!get_test_request)
  531.                                 methode=BACK_ADD_TEST;      // tester avec HEAD
  532.                               else {
  533.                                 methode=BACK_ADD_TEST2;     // tester avec GET
  534.                                 if ( opt->errlog!=NULL ) {
  535.                                   fspc(opt->errlog,"warning"); fprintf(opt->errlog,"Loop with HEAD request (during prefetch) at %s%s"LF,curr_adr,curr_fil);
  536.                                   test_flush;
  537.                                 }                    
  538.                               }
  539.                               // Ajouter
  540.                               URLSAVENAME_WAIT_FOR_AVAILABLE_SOCKET();
  541.                               if (back_add(sback,opt,cache,mov_adr,mov_fil,methode,referer_adr,referer_fil,1,NULL)!=-1) {    // OK
  542.                                 if ( (opt->debug>1) && (opt->errlog!=NULL) ) {
  543.                                   fspc(opt->errlog,"warning"); fprintf(opt->errlog,"(during prefetch) %s (%d) to link %s at %s%s"LF,back[b].r.msg,back[b].r.statuscode,back[b].r.location,curr_adr,curr_fil);
  544.                                   test_flush;
  545.                                 }
  546.                                 
  547.                                 // libΘrer emplacement backing actuel et attendre le prochain
  548.                                 back_maydelete(opt,cache,sback,b);
  549.                                 strcpybuff(curr_adr,mov_adr);
  550.                                 strcpybuff(curr_fil,mov_fil);
  551.                                 b=back_index(sback,curr_adr,curr_fil,methode);         
  552.                                 if (!get_test_request)
  553.                                   has_been_moved = 1;       // sinon ne pas forcer has_been_moved car non dΘplacΘ
  554.                                 petits_tours++;
  555.                                 //
  556.                               } else {// sinon on fait rien et on s'en va.. (ftp etc)
  557.                                 if ( (opt->debug>1)  && (opt->errlog)) {
  558.                                   fspc(opt->errlog,"debug"); fprintf(opt->errlog,"Warning: Savename redirect backing error at %s%s"LF,mov_adr,mov_fil);
  559.                                   test_flush;
  560.                                 } 
  561.                               }
  562.                             }
  563.                           } else {
  564.                             if ( opt->errlog!=NULL ) {
  565.                               fspc(opt->errlog,"warning"); fprintf(opt->errlog,"Unable to test %s%s (loop to same filename)"LF,adr_complete,fil_complete);
  566.                               test_flush;
  567.                             }
  568.                           }
  569.                           
  570.                         }
  571.                       }
  572.                     } else{  // arrΩter les frais
  573.                       if ( opt->errlog!=NULL ) {
  574.                         fspc(opt->errlog,"warning"); fprintf(opt->errlog,"Unable to test %s%s (loop)"LF,adr_complete,fil_complete);
  575.                         test_flush;
  576.                       }
  577.                     }
  578.                   }  // ok, leaving
  579.                 }
  580.               } while(!stop_looping && back[b].status > 0 && back[b].status < 1000);
  581.               
  582.               // Si non dΘplacΘ, forcer type?
  583.               if (!has_been_moved) {
  584.                 if (back[b].r.statuscode!=-10) {    // erreur
  585.                   if (strnotempty(back[b].r.contenttype)==0)
  586.                     strcpybuff(back[b].r.contenttype,"text/html");    // message d'erreur en html
  587.                   // Finalement on, renvoie un erreur, pour ne toucher α rien dans le code
  588.                   // libΘrer emplacement backing
  589.                   /*if (opt->errlog!=NULL) {
  590.                     fspc(opt->errlog,0); fprintf(opt->errlog,"Error: (during prefetch) %s (%d) to link %s at %s%s"LF,back[b].r.msg,back[b].r.statuscode,back[b].r.location,curr_adr,curr_fil);
  591.                     test_flush;
  592.                   }                    
  593.                   back_delete(opt,cache,sback,b);
  594.                   return -1;        // ERREUR (404 par exemple)
  595.                   */
  596.                 } 
  597.                 
  598.                 {            // pas d'erreur, changer type?
  599.                   char s[16];
  600.                   s[0]='\0';
  601.                   if (strnotempty(back[b].r.cdispo)) {        /* filename given */
  602.                     ext_chg=2;      /* change filename */
  603.                     strcpybuff(ext,back[b].r.cdispo);
  604.                   }
  605.                   else if (!may_unknown(back[b].r.contenttype) || ishtest == -2 ) {  // on peut patcher α priori? (pas interdit ou pas de type)
  606.                     give_mimext(s,back[b].r.contenttype);  // obtenir extension
  607.                     if (strnotempty(s)>0) {    // on a reconnu l'extension
  608.                       ext_chg=1;
  609.                       strcpybuff(ext,s);
  610.                     }
  611.                   }
  612.                 }
  613.               }
  614.               // FIN Si non dΘplacΘ, forcer type?
  615.  
  616.               // libΘrer emplacement backing
  617.               back_maydelete(opt,cache,sback,b);
  618.               
  619.               // --- --- ---
  620.               // oops, a ΘtΘ dΘplacΘ.. on recalcule en rΘcursif (osons!)
  621.               if (has_been_moved) {
  622.                 // copier adr, fil (optionnel, mais sinon marche pas pour le rip)
  623.                 strcpybuff(adr_complete,curr_adr);
  624.                 strcpybuff(fil_complete,curr_fil);
  625.                 // copier adr, fil
  626.                 
  627.                 return url_savename(curr_adr,curr_fil,save,NULL,NULL,referer_adr,referer_fil,opt,liens,lien_tot,sback,cache,hash,ptr,numero_passe,NULL);
  628.               }
  629.               // --- --- ---
  630.               
  631.             }
  632.             
  633.           } else {
  634.             printf("PANIC! : Savename Crash adding error, unexpected error found.. [%d]\n",__LINE__);
  635. #if BDEBUG==1
  636.             printf("error while savename crash adding\n");
  637. #endif
  638.             if (opt->errlog) {
  639.               fspc(opt->errlog,"error"); fprintf(opt->errlog,"Unexpected savename backing error at %s%s"LF,adr,fil_complete);
  640.               test_flush;
  641.             } 
  642.             
  643.           }
  644.           // restaurer
  645. #if HTS_ANALYSTE
  646.           _hts_in_html_parsing=hihp;
  647. #endif
  648.         }  // cachΘ?
  649.       }
  650.     }
  651.   }
  652.  
  653.  
  654.  
  655.   // - - - DEBUT NOMMAGE - - -
  656.  
  657.   // Donner nom par dΘfaut?
  658.   if (fil[strlen(fil)-1]=='/')  {
  659.     if (!strfield(adr_complete,"ftp://")
  660. #if HTS_USEMMS
  661.             && !strfield(adr_complete,"mms://")
  662. #endif
  663.             )
  664.         {
  665.       strcatbuff(fil,DEFAULT_HTML);     // nommer page par dΘfaut!!
  666. #if HTS_USEMMS
  667.         } else if (strfield(adr_complete,"mms://")) {
  668.             strcatbuff(fil,DEFAULT_MMS);
  669. #endif
  670.         } else {
  671.       if (!opt->proxy.active)
  672.         strcatbuff(fil,DEFAULT_FTP);     // nommer page par dΘfaut (texte)
  673.       else
  674.         strcatbuff(fil,DEFAULT_HTML);     // nommer page par dΘfaut (α priori ici html depuis un proxy http)
  675.     }
  676.   }
  677.   // Changer extension?
  678.   // par exemple, php3 sera sauvΘ en html, cgi en html ou gif, xbm etc.. selon les cas
  679.   if (ext_chg) {  // changer ext
  680.     char* a=fil+strlen(fil)-1;
  681.     if ( (opt->debug>1) && (opt->log!=NULL) ) {
  682.       fspc(opt->log,"debug");
  683.       if (ext_chg==1)
  684.         fprintf(opt->log,"Changing link extension %s%s to .%s"LF,adr_complete,fil_complete,ext);
  685.       else
  686.         fprintf(opt->log,"Changing link name %s%s to %s"LF,adr_complete,fil_complete,ext);
  687.       test_flush;
  688.     }
  689.     if (ext_chg==1) {
  690.       while((a > fil) && (*a!='.') && (*a!='/')) a--;
  691.       if (*a=='.') *a='\0';  // couper
  692.       strcatbuff(fil,".");      // recopier point
  693.     } else {
  694.       while(( a > fil) && (*a!='/')) a--;
  695.       if (*a=='/') a++;
  696.       *a='\0';
  697.    }
  698.     strcatbuff(fil,ext);    // copier ext/nom
  699.   }
  700.  
  701.   // Rechercher premier / et dernier .
  702.   {  
  703.     char* a=fil+strlen(fil)-1;
  704.  
  705.     // passer structures
  706.     start_pos=fil;
  707.     while(( a > fil) && (*a != '/') && (*a != '\\')) {
  708.       if (*a == '.')    // point? noter position
  709.         if (!dot_pos)
  710.           dot_pos=a;
  711.         a--;
  712.     }
  713.     if ((*a=='/') || (*a=='\\')) a++;
  714.     nom_pos = a;
  715.   }
  716.  
  717.   
  718.   // un nom de fichier est gΘnΘrΘ
  719.   // s'il existe dΘja, alors on le mofifie lΘgΦrement
  720.  
  721.   // ajouter nom du site Θventuellement en premier
  722.   if (opt->savename_type == -1) {    // utiliser savename_userdef! (%h%p/%n%q.%t)
  723.     char* a = opt->savename_userdef;
  724.     char* b = save;
  725.     /*char *nom_pos=NULL,*dot_pos=NULL;  // Position nom et point */
  726.     char tok;
  727.  
  728.     /*
  729.     {  // Rechercher premier /
  730.       char* a=fil+strlen(fil)-1;
  731.       // passer structures
  732.       while(((int) a>(int) fil) && (*a != '/') && (*a != '\\')) {
  733.         if (*a == '.')    // point? noter position
  734.         if (!dot_pos)
  735.           dot_pos=a;
  736.         a--;
  737.       }
  738.       if ((*a=='/') || (*a=='\\')) a++;
  739.       nom_pos = a;
  740.     }
  741.     */
  742.  
  743.     // Construire nom
  744.     while ((*a) && (((int) (b - save)) < HTS_URLMAXSIZE ) ) {    // parser, et pas trop long..
  745.       if (*a == '%') {
  746.         int short_ver=0;
  747.         a++;
  748.         if (*a == 's') {
  749.           short_ver=1;
  750.           a++;
  751.         }
  752.         *b='\0';
  753.         switch(tok=*a++) {
  754.           case '[':            // %[param:prefix_if_not_empty:suffix_if_not_empty:empty_replacement:notfound_replacement]
  755.             if (strchr(a,']')) {
  756.               int pos=0;
  757.               char name[5][256];
  758.               char* c=name[0];
  759.               for(pos = 0 ; pos < 5 ; pos++) {
  760.                 name[pos][0]='\0';
  761.               }
  762.               pos=0;
  763.               while(*a!=']') {
  764.                 if (pos < 5) {
  765.                   if (*a == ':') {  // next token
  766.                     c=name[++pos];
  767.                     a++;
  768.                   } else {
  769.                     *c++=*a++;
  770.                     *c='\0';
  771.                   }
  772.                 }
  773.               }
  774.               a++;
  775.               strcatbuff(name[0],"=");           /* param=.. */
  776.               c=strchr(fil_complete,'?');
  777.               /* parameters exists */
  778.               if (c) {
  779.                 char* cp;
  780.                 while((cp = strstr(c+1, name[0])) && *(cp-1) != '?' && *(cp-1) != '&') {     /* finds [?&]param= */
  781.                   c = cp;
  782.                 }
  783.                 if (cp) {
  784.                   c = cp + strlen(name[0]);    /* jumps "param=" */
  785.                   strcpybuff(b, name[1]);    /* prefix */
  786.                   b += strlen(b);
  787.                   if (*c != '\0' && *c != '&') {
  788.                     char* d = name[0];
  789.                     /* */
  790.                     while(*c != '\0' && *c != '&') {
  791.                       *d++ = *c++;
  792.                     }
  793.                     *d = '\0';
  794.                     d = unescape_http(name[0]);
  795.                     if (d && *d) {
  796.                       strcpybuff(b, d);         /* value */
  797.                       b += strlen(b);
  798.                     } else {
  799.                       strcpybuff(b, name[3]);    /* empty replacement if any */
  800.                       b += strlen(b);
  801.                     }
  802.                   } else {
  803.                     strcpybuff(b, name[3]);    /* empty replacement if any */
  804.                     b += strlen(b);
  805.                   }
  806.                   strcpybuff(b, name[2]);    /* suffix */
  807.                   b += strlen(b);
  808.                 } else {
  809.                   strcpybuff(b, name[4]);    /* not found replacement if any */
  810.                   b += strlen(b);
  811.                 }
  812.                             } else {
  813.                                 strcpybuff(b, name[4]);    /* not found replacement if any */
  814.                                 b += strlen(b);
  815.                             }
  816.             }
  817.           break;
  818.           case '%': *b++='%'; break;
  819.           case 'n':    // nom sans ext
  820.             *b='\0';
  821.             if (dot_pos) {
  822.               if (!short_ver)    // Noms longs
  823.                 strncatbuff(b,nom_pos,(int) (dot_pos - nom_pos));
  824.               else
  825.                 strncatbuff(b,nom_pos,min((int) (dot_pos - nom_pos),8));
  826.             } else {
  827.               if (!short_ver)    // Noms longs
  828.                 strcpybuff(b,nom_pos);
  829.               else
  830.                 strncatbuff(b,nom_pos,8);
  831.             }
  832.             b+=strlen(b);   // pointer α la fin
  833.             break;
  834.           case 'N':    // nom avec ext
  835.             // RECOPIE NOM + EXT
  836.             *b='\0';
  837.             if (dot_pos) {
  838.               if (!short_ver)    // Noms longs
  839.                 strncatbuff(b,nom_pos,(int) (dot_pos - nom_pos));
  840.               else
  841.                 strncatbuff(b,nom_pos,min((int) (dot_pos - nom_pos),8));
  842.             } else {
  843.               if (!short_ver)    // Noms longs
  844.                 strcpybuff(b,nom_pos);
  845.               else
  846.                 strncatbuff(b,nom_pos,8);
  847.             }
  848.             b+=strlen(b);   // pointer α la fin
  849.             // RECOPIE NOM + EXT
  850.             *b='\0';
  851.             if (dot_pos) {
  852.               if (!short_ver)    // Noms longs
  853.                 strcpybuff(b,dot_pos+1);
  854.               else
  855.                 strncatbuff(b,dot_pos+1,3);
  856.             } else {
  857.               if (!short_ver)    // Noms longs
  858.                 strcpybuff(b,DEFAULT_EXT + 1);    // pas de..
  859.               else
  860.                 strcpybuff(b,DEFAULT_EXT_SHORT + 1);    // pas de..
  861.             }
  862.             b+=strlen(b);   // pointer α la fin
  863.             //
  864.             break;
  865.           case 't':    // ext
  866.             *b='\0';
  867.             if (dot_pos) {
  868.               if (!short_ver)    // Noms longs
  869.                 strcpybuff(b,dot_pos+1);
  870.               else
  871.                 strncatbuff(b,dot_pos+1,3);
  872.             } else {
  873.               if (!short_ver)    // Noms longs
  874.                 strcpybuff(b,DEFAULT_EXT + 1);    // pas de..
  875.               else
  876.                 strcpybuff(b,DEFAULT_EXT_SHORT + 1);    // pas de..
  877.             }
  878.             b+=strlen(b);   // pointer α la fin
  879.             break;
  880.           case 'p':    // path sans dernier /
  881.             *b='\0';
  882.             if (nom_pos != fil + 1) { // pas: /index.html (chemin nul)
  883.               if (!short_ver) {   // Noms longs
  884.                 strncatbuff(b,fil,(int) (nom_pos - fil) - 1);
  885.               } else {
  886.                 char BIGSTK pth[HTS_URLMAXSIZE*2],n83[HTS_URLMAXSIZE*2];
  887.                 pth[0]=n83[0]='\0';
  888.                 //
  889.                 strncatbuff(pth,fil,(int) (nom_pos - fil) - 1);
  890.                 long_to_83(opt->savename_83,n83,pth);
  891.                 strcpybuff(b,n83);
  892.               }
  893.             }
  894.             b+=strlen(b);   // pointer α la fin
  895.             break;
  896.           case 'h':    // host
  897.             *b='\0';
  898.             if (strcmp(adr_complete,"file://")==0) {
  899.               if (!short_ver)    // Noms longs
  900.                 strcpybuff(b,"localhost");
  901.               else
  902.                 strcpybuff(b,"local");
  903.             } else {
  904.               if (!short_ver)    // Noms longs
  905.                 strcpybuff(b,print_adr);
  906.               else
  907.                 strncatbuff(b,print_adr,8);
  908.             }
  909.             b+=strlen(b);   // pointer α la fin
  910.             break;
  911.           case 'M':         /* host/address?query MD5 (128-bits) */
  912.             *b='\0';
  913.             {
  914.               char digest[32+2];
  915.               char BIGSTK buff[HTS_URLMAXSIZE*2];
  916.               digest[0]=buff[0]='\0';
  917.               strcpybuff(buff,adr);
  918.               strcatbuff(buff,fil_complete);
  919.               domd5mem(buff,strlen(buff),digest,1);
  920.               strcpybuff(b,digest);
  921.             }
  922.             b+=strlen(b);   // pointer α la fin
  923.             break;
  924.           case 'Q': case 'q':         /* query MD5 (128-bits/16-bits) 
  925.                                          GENERATED ONLY IF query string exists! */
  926.             *b='\0';
  927.             strncatbuff(b,url_md5(fil_complete),(tok == 'Q')?32:4);
  928.             b+=strlen(b);   // pointer α la fin
  929.             break;
  930.           case 'r': case 'R':        // protocol
  931.             *b='\0';
  932.             strcatbuff(b, protocol_str[protocol]);
  933.             b+=strlen(b);   // pointer α la fin
  934.           break;
  935.  
  936.       /* Patch by Juan Fco Rodriguez to get the full query string */
  937.       case 'k':
  938.         {
  939.           char *d = strchr(fil_complete,'?');
  940.           if( d != NULL )
  941.           {
  942.             strcatbuff(b, d);
  943.             b+=strlen(b);
  944.           }
  945.         }
  946.         break;
  947.  
  948.         }
  949.       } else
  950.         *b++=*a++;
  951.     }
  952.     *b++='\0';
  953.     //
  954.     // Types prΘdΘfinis
  955.     //
  956.  
  957.   } 
  958.   //
  959.   // Structure originale
  960.   else if (opt->savename_type%100==0) { 
  961.     /* recopier www.. */
  962.     if (opt->savename_type!=100) {  
  963.       if (((opt->savename_type/1000)%2)==0) {    // >1000 signifie "pas de www/"
  964.         if (strcmp(adr_complete,"file://")==0) {
  965.           //## if (*adr==lOCAL_CHAR) {
  966.           if (opt->savename_83 != 1)  // noms longs
  967.             strcatbuff(save,"localhost");
  968.           else
  969.             strcatbuff(save,"local");
  970.         } else {
  971.           // adresse url
  972.           if (!opt->savename_83) {  // noms longs (et pas de .)
  973.             strcatbuff(save,print_adr);
  974.           } else {  // noms 8-3
  975.             if (strlen(print_adr)>4) {
  976.               if (strfield(print_adr,"www."))
  977.                 strncatbuff(save,print_adr+4,max_char);
  978.               else
  979.                 strncatbuff(save,print_adr,8);
  980.             } else strncatbuff(save,print_adr,max_char);
  981.           }
  982.         }
  983.         if (*fil!='/') strcatbuff(save,"/");
  984.       }
  985.     }
  986.   
  987.     hts_lowcase(save);
  988.         
  989.     /*
  990.     // ne sert α rien car a dΘja ΘtΘ filtrΘ normalement
  991.     if ((*fil=='.') && (*(fil+1)=='/'))          // ./index.html ** //
  992.       url_savename_addstr(save,fil+2);
  993.     else                                               // index.html ou /index.html
  994.       url_savename_addstr(save,fil);
  995.     if (save[strlen(save)-1]=='/') 
  996.       strcatbuff(save,DEFAULT_HTML);     // nommer page par dΘfaut!!
  997. */
  998.  
  999.     /* add name */
  1000.     ADD_STANDARD_PATH;
  1001.     ADD_STANDARD_NAME(0);
  1002.  
  1003.   }
  1004.   //
  1005.   // Structure html/image
  1006.   else {    
  1007.     // dossier "web" ou "www.xxx" ?
  1008.     if (((opt->savename_type/1000)%2)==0) {    // >1000 signifie "pas de www/"
  1009.       if ((opt->savename_type/100)%2) {
  1010.         if (strcmp(adr_complete,"file://")==0) {
  1011.         //## if (*adr==lOCAL_CHAR) {
  1012.           if (opt->savename_83 != 1)  // noms longs
  1013.             strcatbuff(save,"localhost/");
  1014.           else
  1015.             strcatbuff(save,"local/");
  1016.         } else {
  1017.           // adresse url
  1018.           if (!opt->savename_83) {  // noms longs
  1019.             strcatbuff(save,print_adr); strcatbuff(save,"/");
  1020.           } else {  // noms 8-3
  1021.             if (strlen(print_adr)>4) {
  1022.               if (strfield(print_adr,"www."))
  1023.                 strncatbuff(save,print_adr+4,max_char);
  1024.               else
  1025.                 strncatbuff(save,print_adr,max_char);
  1026.               strcatbuff(save,"/");
  1027.             } else { 
  1028.               strncatbuff(save,print_adr,max_char); strcatbuff(save,"/");
  1029.             }
  1030.           }
  1031.         }
  1032.       } else {
  1033.         strcatbuff(save,"web/");    // rΘpertoire gΘnΘral
  1034.       }
  1035.     } 
  1036.  
  1037.     // si un html α coup s√r
  1038.     if ( (ext_chg!=0) ? (ishtml_ext(ext) == 1) : (ishtml(fil)==1) ) {
  1039.       if (opt->savename_type%100==2) {  // html/
  1040.         strcatbuff(save, "html/");
  1041.       }
  1042.     } else {
  1043.       if ((opt->savename_type%100==1) || (opt->savename_type%100==2)) {  // html & images
  1044.         strcatbuff(save, "images/");
  1045.       }
  1046.     }
  1047.     
  1048.     switch (opt->savename_type%100) {
  1049.     case 4: case 5: {           // sΘparer par types
  1050.       char* a=fil+strlen(fil)-1;
  1051.       // passer structures
  1052.       while(( a > fil) && (*a != '/') && (*a != '\\')) a--;      
  1053.       if ((*a=='/') || (*a=='\\')) a++;
  1054.  
  1055.       // html?
  1056.       if ( (ext_chg!=0) ? (ishtml_ext(ext)==1) : (ishtml(fil)==1) ) {
  1057.         if (opt->savename_type%100==5)
  1058.           strcatbuff(save,"html/");
  1059.       } else {
  1060.         char* a=fil+strlen(fil)-1;
  1061.         while(( a> fil) && (*a != '/') && (*a != '.')) a--;      
  1062.         if (*a!='.')
  1063.           strcatbuff(save,"other");
  1064.         else
  1065.           strcatbuff(save,a+1);
  1066.         strcatbuff(save,"/");
  1067.       }
  1068.       /*strcatbuff(save,a);*/
  1069.       /* add name */
  1070.       ADD_STANDARD_NAME(0);
  1071.             }
  1072.       break;
  1073.     case 99: {                  // 'codΘ' .. c'est un gadget
  1074.       int i;
  1075.       int j;
  1076.       char* a;
  1077.       char C[]="ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_-";
  1078.       int L;
  1079.       // pseudo-CRC sur fil et adr pour initialiser gΘnΘrateur alΘatoire..
  1080.       unsigned int s=0;
  1081.       L=strlen(C);
  1082.       for(i=0;i<(int) strlen(fil_complete);i++) {
  1083.         s+=(unsigned int) fil_complete[i];
  1084.       }
  1085.       for(i=0;i<(int) strlen(adr_complete);i++) {
  1086.         s+=(unsigned int) adr_complete[i];
  1087.       }
  1088.       srand(s);
  1089.       
  1090.       j=strlen(save);
  1091.       for(i=0;i<8;i++) {
  1092.         char c=C[(rand()%L)];
  1093.         save[i+j]=c;
  1094.       }
  1095.       save[i+j]='\0';
  1096.       // ajouter extension
  1097.       a=fil+strlen(fil)-1;
  1098.       while(( a > fil) && (*a != '/') && (*a != '.')) a--;
  1099.       if (*a=='.') {
  1100.         strcatbuff(save,a);    // ajouter
  1101.       }
  1102.              } 
  1103.       break;
  1104.     default: {   // noms sans les noms des rΘpertoires
  1105.       // ne garder que le nom, pas la structure
  1106.       /*
  1107.       char* a=fil+strlen(fil)-1;
  1108.       while(((int) a>(int) fil) && (*a != '/') && (*a != '\\')) a--;      
  1109.       if ((*a=='/') || (*a=='\\')) a++;
  1110.       strcatbuff(save,a);
  1111.       */
  1112.  
  1113.       /* add name */
  1114.       ADD_STANDARD_NAME(0);
  1115.             }
  1116.       break;
  1117.     }
  1118.  
  1119.     hts_lowcase(save);
  1120.  
  1121.     if (save[strlen(save)-1]=='/') 
  1122.       strcatbuff(save,DEFAULT_HTML);     // nommer page par dΘfaut!!
  1123.   }
  1124.  
  1125.  
  1126.   // vΘrifier qu'on ne doit pas forcer l'extension
  1127.   // par exemple, asp sera sauvΘ en html, cgi en html ou gif, xbm etc.. selon les cas
  1128.   /*if (ext_chg) {
  1129.     char* a=save+strlen(save)-1;
  1130.     while(((int) a>(int) save) && (*a!='.') && (*a!='/')) a--;
  1131.     if (*a=='.') *a='\0';  // couper
  1132.     // recopier extension
  1133.     strcatbuff(save,".");
  1134.     strcatbuff(save,ext);    // copier ext
  1135.   }*/
  1136.   // de mΩme en cas de manque d'extension on en place une de maniΦre forcΘe..
  1137.   // cela Θvite les /chez/toto et les /chez/toto/index.html incompatibles
  1138.   if (opt->savename_type != -1) {
  1139.     char* a=save+strlen(save)-1;
  1140.     while(( a > save) && (*a!='.') && (*a!='/')) a--;
  1141.     if (*a!='.') {   // agh pas de point
  1142.       //strcatbuff(save,".none");                 // a Θviter
  1143.       strcatbuff(save,".html");                   // prΘfΘrable!
  1144.       if ( (opt->debug>1) && (opt->errlog!=NULL) ) {
  1145.         fspc(opt->errlog,"warning"); fprintf(opt->errlog,"Default HTML type set for %s%s"LF,adr_complete,fil_complete);
  1146.         test_flush;
  1147.       }
  1148.     }
  1149.   }
  1150.  
  1151.   // effacer pass au besoin pour les autentifications
  1152.   // (plus la peine : masquΘ au dΘbut)
  1153. /*
  1154.   {
  1155.     char* a=jump_identification(save);
  1156.     if (a!=save) {
  1157.       char BIGSTK tempo[HTS_URLMAXSIZE*2];
  1158.       char *b;
  1159.       tempo[0]='\0';
  1160.       strcpybuff(tempo,"[");
  1161.       b=strchr(save,':');
  1162.       if (!b) b=strchr(save,'@');
  1163.       if (b)
  1164.         strncatbuff(tempo,save,(int) b-(int) a);
  1165.       strcatbuff(tempo,"]");
  1166.       strcatbuff(tempo,a);
  1167.       strcpybuff(save,a);
  1168.     }
  1169.   }
  1170. */
  1171.  
  1172.   // Θviter les / au dΘbut (cause: N100)
  1173.   if (save[0]=='/') {
  1174.     char BIGSTK tempo[HTS_URLMAXSIZE*2];
  1175.     strcpybuff(tempo,save+1);
  1176.     strcpybuff(save,tempo);
  1177.   }
  1178.  
  1179.   // changer les ~,:,",*,? en _ pour sauver sur disque
  1180.   hts_replace(save,'~','_');  // interdit sous unix (~foo)
  1181.   //
  1182.   hts_replace(save,'\\','_');
  1183.   hts_replace(save,':','_');  // interdit sous windows
  1184.   hts_replace(save,'*','_');  // interdit sous windows
  1185.   hts_replace(save,'?','_');  // doit pas arriver!!
  1186.   hts_replace(save,'\"','_');  // interdit sous windows
  1187.   hts_replace(save,'<','_');  // interdit sous windows
  1188.   hts_replace(save,'>','_');  // interdit sous windows
  1189.   hts_replace(save,'|','_');  // interdit sous windows
  1190.   //
  1191.   hts_replace(save,'@','_');
  1192.   if (opt->savename_83 == 2) { // CDROM
  1193.     // maybe other ones?
  1194.     hts_replace(save,'-','_');
  1195.     hts_replace(save,'=','_');
  1196.     hts_replace(save,'+','_');
  1197.   }
  1198.   //
  1199.   { // Θliminer les // (comme ftp://)
  1200.     char* a;
  1201.     while( (a=strstr(save,"//")) ) *a='_';
  1202.     // Eliminer chars spΘciaux
  1203.     a=save -1 ;
  1204.     while(*(++a))
  1205.       if ( ((unsigned char)(*a) <= 31)
  1206.           || ((unsigned char)(*a) == 127) )
  1207.         *a='_';
  1208.   }
  1209.  
  1210.    
  1211. #if HTS_OVERRIDE_DOS_FOLDERS
  1212.   /* Replace /foo/nul/bar by /foo/nul_/bar */
  1213.   {
  1214.     int i=0;
  1215.     while(hts_tbdev[i][0]) {
  1216.       char* a=save;
  1217.       while((a=strstrcase(a,(char*)hts_tbdev[i]))) {
  1218.         switch ( (int) a[strlen(hts_tbdev[i])] ) {
  1219.         case '\0':
  1220.         case '/':
  1221.         case '.': 
  1222.         {
  1223.           char BIGSTK tempo[HTS_URLMAXSIZE*2]; tempo[0]='\0';
  1224.           strncatbuff(tempo,save,(int) (a - save) + strlen(hts_tbdev[i]));
  1225.           strcatbuff(tempo,"_");
  1226.           strcatbuff(tempo,a+strlen(hts_tbdev[i]));
  1227.           strcpybuff(save,tempo);
  1228.                    }
  1229.           break;
  1230.         }
  1231.         a+=strlen(hts_tbdev[i]);
  1232.       }
  1233.       i++;
  1234.     }
  1235.   }
  1236.   /* Strip ending . or ' ' forbidden on windoz */
  1237.   {
  1238.     int len;
  1239.     char* a=save;
  1240.     while((a=strstr(a,"./"))) {
  1241.       *a = '_';
  1242.     }
  1243.     a=save;
  1244.     while((a=strstr(a," /"))) {
  1245.       *a = '_';
  1246.     }
  1247.     len = (int) strlen(save);
  1248.     if (len > 0 && ( save[len - 1] == '.' || save[len - 1] == ' ') ) {
  1249.       save[len - 1] = '_';
  1250.     }
  1251.   }
  1252. #endif
  1253.  
  1254.   // conversion 8-3 .. y compris pour les rΘpertoires
  1255.   if (opt->savename_83) {
  1256.     char BIGSTK n83[HTS_URLMAXSIZE*2];
  1257.     long_to_83(opt->savename_83,n83,save);
  1258.     strcpybuff(save,n83);
  1259.   }
  1260.  
  1261.   // enforce stricter ISO9660 compliance (bug reported by Steffo Carlsson)
  1262.   // Level 1 File names are restricted to 8 characters with a 3 character extension, 
  1263.   // upper case letters, numbers and underscore; maximum depth of directories is 8.
  1264.   // This will be our "DOS mode"
  1265.   // L2: 31 characters
  1266.   // A-Z,0-9,_
  1267.   if (opt->savename_83 > 0) {
  1268.     char *a, *last;
  1269.     for(last = save + strlen(save) - 1 ; last != save && *last != '/' && *last != '\\' && *last != '.' ; last--);
  1270.     if (*last != '.') {
  1271.       last = NULL;
  1272.     }
  1273.     for(a = save ; *a != '\0' ; a++) {
  1274.       if (*a >= 'a' && *a <= 'z') {
  1275.         *a -= 'a' - 'A';
  1276.       }
  1277.       else if (*a == '.') {
  1278.         if (a != last) {
  1279.           *a = '_';
  1280.         }
  1281.       }
  1282.       else if ( ! ( (*a >= 'A' && *a <= 'Z') || (*a >= '0' && *a <= '9') || *a == '_' || *a == '/' || *a == '\\') ) {
  1283.         *a = '_';
  1284.       }
  1285.     }
  1286.   }
  1287.  
  1288.   /* ensure that there is no ../ (potential vulnerability) */
  1289.   fil_simplifie(save);
  1290.  
  1291. #if HTS_ANALYSTE
  1292.   {
  1293.     hts_htmlcheck_savename(adr_complete,fil_complete,referer_adr,referer_fil,save);
  1294.     if ( (opt->debug>0) && (opt->log!=NULL) ) {
  1295.       fspc(opt->log,"info"); fprintf(opt->log,"engine: save-name: local name: %s%s -> %s"LF,adr,fil,save);
  1296.       test_flush;
  1297.     }
  1298.   }
  1299. #endif
  1300.  
  1301.     /* Ensure that the MANDATORY "temporary" extension is set */
  1302.     if (ext_chg_delayed) {
  1303.         char *ptr;
  1304.         char *lastDot = NULL;
  1305.         for(ptr = save ; *ptr != 0 ; ptr++) {
  1306.             if (*ptr == '.') {
  1307.                 lastDot = ptr;
  1308.             } else if (*ptr == '/' || *ptr == '\\') {
  1309.                 lastDot = NULL;
  1310.             }
  1311.         }
  1312.         if (lastDot == NULL) {
  1313.             strcatbuff(save, "." DELAYED_EXT);
  1314.         } else if (!IS_DELAYED_EXT(save)) {
  1315.             strcatbuff(lastDot, "." DELAYED_EXT);
  1316.         }
  1317.     }
  1318.  
  1319.   // chemin primaire Θventuel A METTRE AVANT
  1320.   if (strnotempty(opt->path_html)) {
  1321.     char BIGSTK tempo[HTS_URLMAXSIZE*2];
  1322.     strcpybuff(tempo,opt->path_html);
  1323.     strcatbuff(tempo,save);
  1324.     strcpybuff(save,tempo);
  1325.   }
  1326.  
  1327.  
  1328.   // vΘrifier que le nom n'est pas dΘja pris...
  1329.   if (liens!=NULL) { 
  1330.     int nom_ok;
  1331.     do {
  1332.       int i;
  1333.       int len;
  1334.       len=strlen(save);    // taille
  1335.       //
  1336.       nom_ok=1;  // α priori bon
  1337.       // on part de la fin pour optimiser, plus les opti de taille pour aller encore plus vite..
  1338. #if DEBUG_SAVENAME
  1339. printf("\nStart search\n");
  1340. #endif
  1341.  
  1342.       i=hash_read(hash,save,"",0,0);      // lecture type 0 (sav)
  1343.       if (i>=0)
  1344.           {
  1345.             int sameAdr = ( strfield2(liens[i]->adr, normadr) != 0 );
  1346.             int sameFil;
  1347.                         // NO - URL hack is only for stripping // and www.
  1348.             //if (opt->urlhack != 0)
  1349.             //  sameFil = ( strfield2(liens[i]->fil, normfil) != 0);
  1350.             //else
  1351.             sameFil = ( strcmp(liens[i]->fil, normfil) == 0);
  1352.             if (sameAdr && sameFil)
  1353.             {    // ok c'est le mΩme lien, adresse dΘja dΘfinie
  1354.               /* Take the existing name not to screw up with cAsE sEnSiTiViTy of Linux/Unix */
  1355.               if (strcmp(liens[i]->sav, save) != 0) {
  1356.                 strcpybuff(save, liens[i]->sav);
  1357.               }
  1358.               i=0;
  1359. #if DEBUG_SAVENAME
  1360. printf("\nOK ALREADY DEFINED\n",13,i);
  1361. #endif
  1362.             } else {  // utilisΘ par un AUTRE, changer de nom
  1363.               char BIGSTK tempo[HTS_URLMAXSIZE*2];
  1364.               char* a=save+strlen(save)-1;
  1365.               char* b;
  1366.               int n=2;       
  1367.               char collisionSeparator = ( (opt->savename_83 != 2) ? '-' : '_');
  1368.               tempo[0]='\0';
  1369.  
  1370. #if DEBUG_SAVENAME
  1371. printf("\nWRONG CASE UNMATCH : \n%s\n%s, REDEFINE\n",liens[i]->fil,fil_complete);
  1372. #endif
  1373.               nom_ok=0;
  1374.               i=0;
  1375.               
  1376.               while(( a > save) && (*a!='.') && (*a!='\\') && (*a!='/')) a--;
  1377.               if (*a=='.')
  1378.                 strncatbuff(tempo,save,(int) (a - save));
  1379.               else
  1380.                 strcatbuff(tempo,save);
  1381.               
  1382.               // tester la prΘsence d'un -xx (ex: index-2.html -> index-3.html)
  1383.               b=tempo+strlen(tempo)-1;
  1384.               while (isdigit((unsigned char)*b)) b--;
  1385.               if (*b == collisionSeparator) {
  1386.                 sscanf(b+1,"%d",&n);
  1387.                 *b='\0';    // couper
  1388.                 n++;  // plus un
  1389.               }
  1390.               
  1391.               // en plus il faut gΘrer le 8-3 .. pas facile le client
  1392.               if (opt->savename_83) {
  1393.                 int max;
  1394.                 char* a=tempo+strlen(tempo)-1;
  1395.                 while(( a > tempo) && (*a!='/')) a--;
  1396.                 if (*a=='/') a++;
  1397.                 max=max_char-1-nombre_digit(n);
  1398.                 if ((int) strlen(a)>max)
  1399.                   *(a+max)='\0';  // couper sinon il n'y aura pas la place!
  1400.               }
  1401.               
  1402.               // ajouter -xx (ex: index.html -> index-2.html)
  1403.               sprintf(tempo+strlen(tempo),"%c%d", collisionSeparator, n);
  1404.               
  1405.               // ajouter extension
  1406.               if (*a=='.')
  1407.                 strcatbuff(tempo,a);
  1408.               
  1409.               strcpybuff(save,tempo);
  1410.               
  1411.               //printf("switched: %s\n",save);
  1412.               
  1413.             }  // if
  1414.           }
  1415. #if DEBUG_SAVENAME
  1416. printf("\nEnd search, %s\n",fil_complete);
  1417. #endif
  1418.     } while(!nom_ok);
  1419.     
  1420.   }
  1421.   
  1422.   //printf("'%s' %s %s\n",save,adr,fil);
  1423.       
  1424.   return 0;
  1425. }
  1426.  
  1427. /* nom avec md5 urilisΘ partout */
  1428. void standard_name(char* b,char* dot_pos,char* nom_pos,char* fil_complete,int short_ver) {
  1429.   b[0]='\0';
  1430.   /* Nom */
  1431.   if (dot_pos) {
  1432.     if (!short_ver)    // Noms longs
  1433.       strncatbuff(b,nom_pos,(int) (dot_pos - nom_pos));
  1434.     else
  1435.       strncatbuff(b,nom_pos,min((int) (dot_pos - nom_pos),8));
  1436.   } else {
  1437.     if (!short_ver)    // Noms longs
  1438.       strcatbuff(b,nom_pos);
  1439.     else
  1440.       strncatbuff(b,nom_pos,8);
  1441.   }
  1442.   /* MD5 - 16 bits */
  1443.   strncatbuff(b,url_md5(fil_complete),4);
  1444.   /* Ext */
  1445.   if (dot_pos) {
  1446.     strcatbuff(b,".");
  1447.     if (!short_ver)    // Noms longs
  1448.       strcatbuff(b,dot_pos+1);
  1449.     else
  1450.       strncatbuff(b,dot_pos+1,3);
  1451.   } else {
  1452.     if (!short_ver)    // Noms longs
  1453.       strcatbuff(b,DEFAULT_EXT + 1);    // pas de..
  1454.     else
  1455.       strcatbuff(b,DEFAULT_EXT_SHORT + 1);    // pas de..
  1456.   }
  1457. }
  1458.  
  1459.  
  1460. /* Petit md5 */
  1461. char* url_md5(char* fil_complete) {
  1462.   char* digest;
  1463.   char* a;
  1464.   NOSTATIC_RESERVE(digest, char, 32+2);
  1465.   digest[0]='\0';
  1466.   a=strchr(fil_complete,'?');
  1467.   if (a) {
  1468.     if (strlen(a)) {
  1469.       char BIGSTK buff[HTS_URLMAXSIZE*2];
  1470.       a++;
  1471.       digest[0]=buff[0]='\0';
  1472.       strcatbuff(buff,a);         /* query string MD5 */
  1473.       domd5mem(buff,strlen(buff),digest,1);
  1474.     }
  1475.   }
  1476.   return digest;
  1477. }
  1478.  
  1479. // interne α url_savename: ajoute une chaεne α une autre avec \ -> /
  1480. void url_savename_addstr(char* d,char* s) {
  1481.   int i=strlen(d);
  1482.   while(*s) {
  1483.     if (*s=='\\')  // remplacer \ par des /
  1484.       d[i++]='/';
  1485.     else
  1486.       d[i++]=*s;
  1487.     s++;
  1488.   }
  1489.   d[i]='\0';
  1490. }
  1491.  
  1492. #undef test_flush
  1493.